.
C# Definition:
delegate int LowLevelKeyboardProc(int nCode,WindowsMessages wParam, [In] KBDLLHOOKSTRUCT lParam);
User-Defined Types:
WindowsMessages the type of event. This will be WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN or WM_SYSKEYUP
KBDLLHOOKSTRUCT contains details of the key
Notes:
See SetWindowsHookEx, CallNextHookEx
C# and VB enums of many of the Windows Messages.
1/14/2017 1:02:06 PM - -62.117.213.16
The KBDLLHOOKSTRUCT structure contains information about a low-level keyboard input event
8/14/2016 4:54:08 PM - -136.174.5.25
Installs a hook to monitor certain types of events.
3/29/2016 12:24:55 PM - -67.166.68.151
The CallNextHookEx API
3/29/2016 1:15:57 PM - -65.216.74.168
